home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 3006 / 3006.xpi / chrome / dwhelper.jar / content / mp3tunes / title.xul < prev    next >
Extensible Markup Language  |  2010-01-15  |  1KB  |  36 lines

  1. <?xml version="1.0"?> 
  2. <!-- *****************************************************************************
  3.  *            Copyright (c) 2006 Michel Gutierrez. All Rights Reserved.
  4.  ****************************************************************************** -->
  5. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 
  6. <?xml-stylesheet href="chrome://dwhelper/skin/dwhelper.css" type="text/css"?>
  7. <?xml-stylesheet href="chrome://dwhelper/content/bindings.css" type="text/css"?>
  8.  
  9. <!DOCTYPE window SYSTEM "chrome://dwhelper/locale/dwhelper.dtd" >
  10.  
  11. <dialog id="mp3tune-title"
  12.         title="&mp3tunes.title.title;"
  13.         ondialogaccept="return doOk();"
  14.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  15.         xmlns:html="http://www.w3.org/1999/xhtml"
  16.         >
  17.  
  18.     <script>
  19. <![CDATA[
  20.  
  21. function doOk() {
  22.     if(document.getElementById("title").validate(window.arguments[0].entry)) {
  23.         window.arguments[0].ok=true;
  24.         return true;
  25.     } else {
  26.         return false;
  27.     }
  28. }
  29.  
  30. ]]>
  31.     </script>
  32.  
  33.     <MP3TunesTitle id="title" flex="1"/>
  34.  
  35. </dialog>
  36.